Assignemnt #33 and Thirtieth Program
Code
///Name: Derrick Andreasen
///Period: 7
///Program name: Thirtieth Program
///File name: ThirProg.java
///Date Finished:10/1/2015
import java.util.Scanner;
public class ThirProg
{
public static void main( String[] args )
{
int people = 20;
int cats = 20;
int dogs = 15;
if ( people < cats )
{
System.out.println( "Too many cats! The world is doomed!" );
}
if ( people > cats )
{
System.out.println( "Not many cats! The world is saved!" );
}
if ( people < dogs )
{
System.out.println( "The world is drooled on!" );
}
if ( people > dogs )
{
System.out.println( "The world is dry!" );
}
dogs += 5;
if ( people >= dogs )
{
System.out.println( "People are greater than or equal to dogs." );
}
if ( people <= dogs )
{
System.out.println( "People are less than or equal to dogs." );
}
if ( people == dogs )
{
System.out.println( "people are dogs." );
}
}
}
/// the if states that "if" something is a certain way then a specific line of text will appear.
///the curly braces tells the if statement what to print.
Picture of the output